fix(security): bump ws to 8.21.0 — CVE-2026-48779 (AXE-3768)#258
Open
sunny-se wants to merge 1 commit into
Open
fix(security): bump ws to 8.21.0 — CVE-2026-48779 (AXE-3768)#258sunny-se wants to merge 1 commit into
sunny-se wants to merge 1 commit into
Conversation
Fix CVE-2026-48779 (GHSA-96hv-2xvq-fx4p) — ws memory exhaustion DoS via tiny WebSocket fragments. CVSS 7.5 (HIGH). ws is transitive (via engine.io, socket.io-adapter). Override collapses all copies (8.17.1, 8.18.3) to 8.21.0. Backward compatible — same major version, basic WebSocket API unchanged.
Collaborator
Author
|
RUN_SCA |
rohitsahu-bstack
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the open ws memory-exhaustion DoS vulnerability (CVE-2026-48779, CVSS 7.5 HIGH) in axe-core.
ws(transitive via engine.io, socket.io-adapter)Sibling PR
Approach
Added
"ws": ">=8.21.0"tooverridesinpackage.json. All 3 ws copies (engine.io8.17.1, socket.io-adapter8.17.1, root8.18.3) collapse to single8.21.0.Backward compatibility
ws 8.21.0 is a minor bump within 8.x — same API. Fix adds
maxBufferedChunks/maxFragmentsoptions. No breaking changes for engine.io/socket.io usage.Validation
npm install --package-lock-only --forceclean.Testing
🤖 Generated with Claude Code